home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / code / chap1 / Movie.java < prev    next >
Encoding:
Text File  |  1997-04-19  |  177 b   |  10 lines

  1. class Movie  {
  2.    static int id;
  3.    String name;
  4.    int runningTime;
  5.    boolean thumbsUp;
  6.    boolean letsSeeIt() {
  7.       return thumbsUp && (runningTime < 130);
  8.    }
  9. }
  10.